Jwt

data class Jwt(val code: JwtError, val token: String, val userIdentifier: String, val message: String? = null) : ErrorData

Error that occurred during JWT authentication.

Constructors

Link copied to clipboard
constructor(code: JwtError, token: String, userIdentifier: String, message: String? = null)

Properties

Link copied to clipboard

The specific error that occurred during JWT authentication. Instance of JwtError.

Link copied to clipboard
open override val message: String? = null

An optional message providing additional details about the error.

Link copied to clipboard

The JWT token that was being used when the error occurred.

Link copied to clipboard

The user identifier associated with the JWT token.